home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #10 / K-CD-10-2002.ISO / Tools / K-CS.dcr / 00037_UI Push2.ls < prev    next >
Encoding:
Text File  |  2002-04-19  |  2.1 KB  |  55 lines

  1. property UpCM, DownCM, PressCM, UpNum, DownNum, PressNum, button_active, RunCommand
  2.  
  3. on mouseDown me
  4. end
  5.  
  6. on mouseUp me
  7.   set the member of sprite the spriteNum of me to member the DownCM of me
  8.   do(the RunCommand of me)
  9. end
  10.  
  11. on mouseEnter me
  12.   if not (the button_active of me) then
  13.     set the member of sprite the spriteNum of me to member the DownCM of me
  14.     set the button_active of me to 1
  15.   end if
  16. end
  17.  
  18. on mouseLeave me
  19.   if the button_active of me then
  20.     set the member of sprite the spriteNum of me to member the UpCM of me
  21.     set the button_active of me to 0
  22.   end if
  23. end
  24.  
  25. on mouseUpOutSide me
  26.   set the member of sprite the spriteNum of me to member the UpCM of me
  27.   set the button_active of me to 0
  28. end
  29.  
  30. on beginSprite me
  31.   set the UpCM of me to the member of sprite the spriteNum of me
  32.   set the UpNum of me to the number of member UpCM
  33.   set the DownNum of me to the number of member DownCM
  34.   set the button_active of me to 0
  35. end
  36.  
  37. on endSprite me
  38. end
  39.  
  40. on getPropertyDescriptionList
  41.   if the currentSpriteNum = 0 then
  42.     set memdefault to 0
  43.   else
  44.     set memref to the member of sprite the currentSpriteNum
  45.     set castLibNum to the castLibNum of memref
  46.     set memdefault to member "Lys Knap"
  47.   end if
  48.   set p_list to [#DownCM: [#comment: "Hilite Image:", #format: #graphic, #default: memdefault], #RunCommand: [#comment: "Command to run:", #format: #text, #default: EMPTY]]
  49.   return p_list
  50. end
  51.  
  52. on getBehaviorDescription
  53.   return "Makes a sprite work as a pushbutton with automatic highlighting and mouse tracking. The sprite's initial castmember represents the button's normal state." & RETURN & "PARAMETERS:" & RETURN & "ΓÇó Hilite Image - Choose the cast member to display when the button is pressed. The default value is the cast member immedietly following the sprite's current cast member." & RETURN & "ΓÇó Activated image - image displayed when the user clicks the button. Default value is the cast member number two from the current cast member." & RETURN & "ΓÇó Operation to execute. This command will be run on a MouseUp event (user releases mouse button over this button). Use it to switch frame, run external programs etc."
  54. end
  55.